JavaScript,Ruby,Ruby on Rails blog

Rails 资源

Rails 路由

排除路由控制器

config/routes.rb文件 修改

1
resources :posts, :excepet => :show

常用路由写法

1
get 'posts/:id', :to => 'posts#show'

简单的Get 请求

小试一下

1
2

<%= link_to '测试一',{:controller => 'posts', :action => 'show', :id => 1 } %>

命名路由

1
get 'post/:id', :to => 'posts:show', :as => 'show_post'

小试一下

1
2

<%= link_to '测试一', show_post_path %>

集合路由

config/routes.rb文件 修改

  • 方式一
1
2
3
resources :posts do
get 'recent' :on => :collection
end
  • 方式二 这种方式更为简洁
1
2
3
4
5
resources :posts do
collection on
get 'recent'
end
end

成员路由

1
2
3
4
5
resources :posts do
member do
get 'recent'
end
end

Comments